home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Support Advantage Support Libraries 1995 March
/
SGI Support Advantage Support Libraries 1995 Mar.iso
/
CDgrelnotes
next >
Wrap
Text File
|
1995-03-08
|
418b
|
24 lines
#!/bin/sh
dirname()
{
ans=`/usr/bin/expr \
"${1:-.}/" : '\(/\)/*[^/]*//*$' `
if [ -n "$ans" ];then
echo $ans
else
ans=`/usr/bin/expr \
"${1:-.}/" : '\(.*[^/]\)//*[^/][^/]*//*$' `
if [ -n "$ans" ];then
echo $ans
else
echo "."
fi
fi
exit 0
}
SRCDIR=`dirname $0`/relnotes/
grelnotes -xrm "Grelnotes*relnotesPath: $SRCDIR"